home *** CD-ROM | disk | FTP | other *** search
/ The CIA Papers / The CIA Papers.iso / go.bat < prev    next >
DOS Batch File  |  1994-08-12  |  394b  |  38 lines

  1. install
  2. cls
  3. :start
  4. echo OFF
  5.  
  6. echo Choose a book
  7. echo .
  8. echo a. The CIA a Forgotten History
  9. echo .
  10. echo b. The CIA World Fact book
  11. echo .
  12. echo x. Quit to DOS
  13. echo .
  14.  
  15. CHOOSE - What do you want to do?
  16.  
  17. IF ERRORLEVEL 24 GOTO 24
  18. IF ERRORLEVEL 2 GOTO 2
  19. IF ERRORLEVEL 1 GOTO 1
  20.  
  21.  
  22. :24
  23. CLS
  24. GOTO END
  25.  
  26. REM blum
  27. :1
  28. call go
  29. goto end
  30.  
  31. REM worldfact
  32. :2
  33. wfb
  34. goto end
  35.  
  36. :end
  37.  
  38.